.index1{
min-height: 405px;
margin: 35px 0px;
}
.index1 p{
font-size: 15px;
}

.index1-content{
    text-align: center;
    margin: auto;
    z-index: 900;
    text-align: center;
}

#index1-bg{
    position: absolute;
    min-width: 100vw;
    max-height: 52vh;
    margin-top: -35px;
    left: 0px;
    z-index: -1;
}

#PC_Photo{
margin-top: 50px;
}

.buttons{
    display: flex;
    flex-direction: row;
    margin: auto;
    margin-top: 40px;
}

#buttonsSmall{
    display: none;
}

.index1-btnsmall{
display: block;
text-decoration: none;
margin-left: 10px;
color: #f56f46;
width: 150px;
height: 42px;
background: white;
cursor: pointer;
border-radius: 15px;
border: 2px solid #f56f46;
}

.index1-btn{
    display: block;
    text-decoration: none;
    color: #fff;
    width: 200px;
    height: 46px;
    background: #f56f46;
    cursor: pointer;
    border-radius: 15px;
}


.index1-btnsmall:hover{
    border: 2px solid #f85d2f;
    background: #f85d2f;
    color: white;
    transition: all .3s ease-out .07s, /* initial transition */
                all .3s ease-out .07s; /* transition back */
}
    
.index1-btn:hover{
    background: #f85d2f;
    transition: all .3s ease-out .07s, /* initial transition */
    all .3s ease-out .07s; /* transition back */
}

.index1-btn-createAccount{
    display: flex;
    justify-content: center;
    line-height: 46px;
}

.index1-btn-learnMore{
    display: flex;
    justify-content: center;
    line-height: 42px;
}

h2{
    padding-top: 50px;
    margin-top: 0px;
    font-size: 28px;
}

.index2{
    background: linear-gradient(290.24deg,#f5f5f5 26.87%,hsla(0,0%,96.1%,0) 72.99%);
    min-height: 350px;
    margin-bottom: 0px;
    padding-bottom: 50px;
    box-sizing: border-box;
}
.index2-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.card{
    min-width: 150px;
}

#card-icon{
margin-top: 35px;

}

.first-row img{
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.second-row h4{
    margin: 15px 0px;
}

.card-third-row{
    font-size: 14px;
}


.index3{
    background: #08083E;
    color: white;
    min-height: 350px;
    margin-top: 0px;
}



@media screen and (max-width: 1000px) and (min-width: 620px){

    
    .index1-content{
        max-width: auto;
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }

    .index1-column-left{
        max-width: auto;
    }
    #PC_Photo{
        max-width: 100%;
        height: auto;
        margin-left: 10px;
    }
    
    .index1-column-right{
         margin-left: auto;
         margin-right: 0px;
         width: auto;
         height: auto;
    }

    #buttonsBig{
        display: none;
    }

    #buttonsSmall{
        display:flex;
    }

    .index2-content{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    
}




@media screen and (max-width: 620px){
    .index1{
        margin-top: 0px;
    }

    .index1-content{
        max-width: none;
        flex-wrap: wrap;
    }

    .buttons{
        flex-wrap: wrap;
    }

    #buttonsBig{
        display: none;
    }

    #buttonsSmall{
        display: flex;
    }

    .index1-btn{
        width: 90vw;
    }

    .index1-btnsmall{
        width: 90vw;
        margin-left: 0px;
        margin-top: 5px;
    }

    .index2-content{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    
}